home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 2000 January
/
Macworld (2000-01).dmg
/
Updaters
/
DirXtra HTML204
/
xtradoc.dir
/
00022_Script_22
< prev
next >
Wrap
Text File
|
1999-02-22
|
876b
|
25 lines
on mouseUp
-- declare the globals
global ghtmlnormfont, ghtmlheadfont, ghtmlttfont, ghtmlfontsize
global ghtmllinkred, ghtmllinkgreen, ghtmllinkblue
global ghtmlsmoothness, ghtmlmargin
-- retrieve the informations in the fields
set ghtmlnormfont = the text of field "normfont"
set ghtmlttfont = the text of field "ttfont"
set ghtmlheadfont = the text of field "headfont"
set ghtmlfontsize = value(the text of field "fontsize")
set ghtmllinkred = value( the text of field "red" )
set ghtmllinkgreen = value( the text of field "green" )
set ghtmllinkblue = value( the text of field "blue" )
set ghtmlsmoothness = value( the text of field "smooth" )
set ghtmlmargin = value( the text of field "margin" )
-- setup the fonts
htmlsetdefaults "html"
-- cause a redraw of the cast member
htmlredraw "html"
end